2. Araxis Merge File Comparison Report

Produced by Araxis Merge on 2023-07-12 04:42:36 +0000. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

2.1 Files compared

#LocationFileLast Modified
1Porto v4.0.5/Theme Files/Porto Theme/app/code/Mageplaza/AjaxLayer.travis.yml2022-07-28 08:51:57 +0000
22023-07-12 04:42:36 +0000

2.2 Comparison summary

DescriptionBetween
Files 1 and 2
Text BlocksLines
Unchanged00
Changed00
Inserted00
Removed168

2.3 Comparison options

WhitespaceConsecutive whitespace is treated as a single space
Character caseDifferences in character case are significant
Line endingsDifferences in line endings (CR and LF characters) are ignored
CR/LF charactersNot shown in the comparison detail
Active line-pairing rules

2.4 Active regular expressions

No regular expressions were active.

2.5 Comparison detail

1 language: php    
2 php:    
3   - 7.0    
4   - 7.1    
5 sudo: required    
6 dist: trusty    
7 env:    
8   global:    
9     - COMPOSER_BIN_DIR=~/bin    
10     - INTEGRATION_SETS=3    
11     - NODE_JS_VERSION=6    
12     - MAGENTO_HOST_NAME="magento2.travis"    
13     - COMPOSER_MODULE=mageplaza/module-ajax-layered-navigation    
14   matrix:    
15     - MAGENTO_VERSION=2.2.1 TEST_SUITE=integration INTEGRATION_INDEX=1    
16     - MAGENTO_VERSION=2.2.1 TEST_SUITE=integration INTEGRATION_INDEX=2    
17     - MAGENTO_VERSION=2.2.1 TEST_SUITE=integration INTEGRATION_INDEX=3    
18     - MAGENTO_VERSION=2.2.2 TEST_SUITE=static    
19     - MAGENTO_VERSION=2.2.2 TEST_SUITE=js GRUNT_COMMAND=static    
20     - MAGENTO_VERSION=2.2.2 TEST_SUITE=integration INTEGRATION_INDEX=1    
21     - MAGENTO_VERSION=2.2.2 TEST_SUITE=integration INTEGRATION_INDEX=2    
22     - MAGENTO_VERSION=2.2.2 TEST_SUITE=integration INTEGRATION_INDEX=3    
23     - MAGENTO_VERSION=2.2.5 TEST_SUITE=integration INTEGRATION_INDEX=1    
24     - MAGENTO_VERSION=2.2.5 TEST_SUITE=integration INTEGRATION_INDEX=2    
25     - MAGENTO_VERSION=2.2.5 TEST_SUITE=integration INTEGRATION_INDEX=3    
26     - MAGENTO_VERSION=2.2.6 TEST_SUITE=integration INTEGRATION_INDEX=1    
27     - MAGENTO_VERSION=2.2.6 TEST_SUITE=integration INTEGRATION_INDEX=2    
28     - MAGENTO_VERSION=2.2.6 TEST_SUITE=integration INTEGRATION_INDEX=3    
29     
30 matrix:    
31   exclude:    
32     - php: 7.0    
33       env: MAGENTO_VERSION=2.2.2 TEST_SUITE=js GRUNT_COMMAND=static    
34     - php: 7.0    
35       env: MAGENTO_VERSION=2.2.2 TEST_SUITE=static    
36 cache:    
37   apt: true    
38   directories:    
39     - "$HOME/.composer/cache"    
40     - "$HOME/.nvm"    
41 addons:    
42   apt:    
43     packages:    
44       - mysql-server-5.6    
45       - mysql-client-core-5.6    
46       - mysql-client-5.6    
47       - postfix    
48   firefox: '46.0'    
49   hosts:    
50     - magento2.travis    
51 before_install:    
52   - git clone https://github.com/magento/magento2 --branch $MAGENTO_VERSION    
53   - cd magento2    
54   - bash ./dev/travis/before_install.sh    
55 install:    
56   - composer install --no-interaction --prefer-dist    
57   - composer require $COMPOSER_MODULE    
58 before_script:    
59   #- cp -f ${TRAVIS_BUILD_DIR}/dev/tests/integration/phpunit.xml.dist dev/tests/integration/    
60   - echo "vendor/$COMPOSER_MODULE" > dev/tests/static/testsuite/Magento/Test/Less/_files/whitelist/common.txt    
61   - echo "vendor/$COMPOSER_MODULE" > dev/tests/static/testsuite/Magento/Test/Php/_files/whitelist/common.txt    
62   - echo "vendor/$COMPOSER_MODULE/**/*.js" > dev/tests/static/testsuite/Magento/Test/Js/_files/whitelist/magento.txt    
63   - bash ./dev/travis/before_script.sh    
64 script:    
65   - test $TEST_SUITE = "static" && TEST_FILTER='--filter "Magento\\Test\\Php\\LiveCodeTest"' || true    
66   - test $TEST_SUITE = "functional" && TEST_FILTER='dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests.php' || true    
67     
68